home *** CD-ROM | disk | FTP | other *** search
/ Assassins - Ultimate CD Games Collection 4 / Assassins 4 (1999)(Weird Science).iso / misc / omega / source / amiga.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-02  |  268 b   |  21 lines

  1. /* amiga.h */
  2.  
  3. struct _win_st
  4. {
  5.   int _cury, _curx;
  6.   int _maxy, _maxx;
  7.   int _offy, _offx;
  8.   int *_text;
  9.   int *_disp;
  10.   char *_lines;
  11.   char _attr;
  12. };
  13.  
  14. typedef struct _win_st WINDOW;
  15.  
  16. extern int LINES;
  17. extern int COLS;
  18.  
  19. extern WINDOW *stdscr;
  20. extern WINDOW *curscr;
  21.